* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Source Han Sans CN";
}
a{
    color: #333333;
    text-decoration: none;
}
ul,li{
    list-style: none;
}
em{
    font-style: normal;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}
body::-webkit-scrollbar{
    display: none;
}
/* 公共盒子 */
.publicBox-wrap{
    width: 100%;
    height: auto;
}
.publicBox-content{
    max-width: 1395px;
    width: 90%;
    margin: 0 auto;
}
/* 公共样式标题 */
.title-wrap{
    width: 100%;
    text-align: center;
}
.title-wrap .title-hanzi{
    font-size: 24px;
    color: #333333;
    font-weight: bold;
}
.title-wrap .title-letter{
    font-size: 14px;
    color: #999999;
}
/* banner图 */
.banner-wrap{
    padding-top: 100px;
    width: 100%;
    height: auto;
}
.banner-box{
    width: 100%;
    height: 100%;
    position: relative;
}
.bannerImg{
    font-size: 0;
    overflow: hidden;
}
.bannerImg img{
    width: 100%;
    height: auto;
}
.bannerText{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.bannerText p{
    color: white;
    letter-spacing: 2px;
    text-align: center;
}
.bannerText-hanzi{
    font-size: 28px;
    font-weight: bold;
}
.bannerText-letter{
    font-size: 14px;
    margin-top: 8px;
}
/* 公共路由导航 */
.router-wrap{
    width: 100%;
    height: 65px;
    background-color: #F5F5F5;
}
.router-box{
    max-width: 1400px;
    width: 90%;
    height: 65px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.router-list{
    display: flex;
    overflow-x: scroll;
    align-items: center;
    justify-content: flex-start;
}
.router-list::-webkit-scrollbar{
    display: none;
}
.router-item{
    width: 120px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    border-right: 1px solid #CCCCCC;
}
.router-item:first-child{
    padding-left: 0;
}
.router-item a{
    display: inline-block;
    width: 120px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    color: #666666;
    font-size: 14px;
    position: relative;
}
.router-itemOn a{
    color: #90C42F;
}
.router-itemOn a::after{
    content: "";
    display: block;
    width: 80%;
    height: 3px;
    border-radius: 3px;
    background-color: #90C42F;
    position: absolute;
    left: 50%;
    bottom: -0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.router-right span,.router-right a{
    color: #666666;
    font-size: 14px;
}
/* 公共头部 */
.header-wrap{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100px;
    background-color: white;
}
.hedaer{
    max-width: 1395px;
    width: 90%;
    height: 100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo a img{
    min-width: 150px;
    width: 10vw;
}
.menuIcon{
    display: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: url(../image/public/menuIcon.png) no-repeat;
    background-size: 100% 100%;
}
.closeIcon{
    background: url(../image/public/closeIcon.png) no-repeat;
    background-size: 100% 100%;
}
.nav-list{
    width: auto;
    height: 100%;
    display: flex;
    padding-right: 10.5vw;
    align-items: center;
    justify-content: space-between;
}
.nav-item{
    height: 100%;
    line-height: 130px;
    margin-right: 2.6vw;
    position: relative;
}
.nav-item:hover::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #90C42F;
    position: absolute;
    bottom: 0;
    left: 0;
}
.nav-item>a{
    font-size: 16px;
    font-weight: bold;
}
.nav-item>a:hover{
    color: #90C42F;
}
.nav-itemOn>a{
    color: #90C42F;
}
/* 导航右侧联系我们 */
.rightContent{
    width: 10.4vw;
    height: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.search-wrap{
    position: relative;
}
.phoneImg{
    width: 100%;
    margin-bottom: 10px;
}
.phoneImg img{
    width: 100%;
}
.searchInp{
    width: 100%;
    height: 30px;
    outline: none;
    padding-left: 15px;
    line-height: 30px;
    border: 1px solid #999999;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.searchIcon{
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: url(../image/public/searchIcon.png) no-repeat;
    background-size: 100% 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
/* 导航下拉 */
.nav-item .linkCategory-list{
    display: none;
    min-width: 110px;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: white;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.nav-item:nth-child(2) .linkCategory-list{
    width: 31.45vw;
    height: auto;
    display: flex;
    align-content: flex-start;
    justify-content: space-between;
    position: absolute;
    left: -15vw;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
}
.nav-item:nth-child(2) .linkCategory-item{
    width: 100%;
}
.linkCategory-title{
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}
.linkCategory-title::after{
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background-color: #EEEEEE;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.Category-item a{
    color: #333333;
    font-size: 14px;
}
.Category-item a:hover{
    color: #90C42F;
}
.linkCategory-item{
    text-align: center;
    line-height: 60px;
}
.linkCategory-item>a{
    display: inline-block;
    width: 100%;
    max-width: 150px;
    height: 60px;
    font-size: 14px;
    color: #666666;
    text-align: center;
    line-height: 60px;
}
.linkCategory-item>a:hover{
    color: #90C42F;
}
/* 公共底部 */
.footer-wrap{
    width: 100%;
    height: 546px;
    color: white;
    background-color: #90C42F;
}
.footer{
    max-width: 1395px;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
}
.linkWrap-list{
    max-width: 975px;
    width: 72%;
    height: auto;
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
}
.linkWrap-item{
    margin-left: 10%;
    position: relative;
}
.linkWrap-item:first-child{
    margin-left: 0;
}
.link-list{
    margin-top: 20px;
}
.addIcon{
    display: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: url(../image/public/addIcon.png) no-repeat;
    background-size: 100% 100%;
}
.delIcon{
    display: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: url(../image/public/delIcon.png) no-repeat;
    background-size: 100% 100%;
}
.footer-title{
    font-size: 22px;
    font-weight: bold;
}
.footer-text{
    color: white;
    opacity: 0.9;
    font-size: 14px;
    line-height: 34px;
}
a.footer-text:hover{
    opacity: 1;
    font-weight: bold;
}
/* 联系我们 */
.contactUs-wrap{
    max-width: 304px;
    width: 22%;
    margin-left: 5%;
}
.contactUs-text{
    margin-top: 20px;
}
.qrcode-list{
    display: flex;
    margin-top: 18px;
    align-content: flex-start;
    justify-content: flex-end;
}
.qrcode-item{
    margin-right: 20px;
    text-align: center;
}
.qrcode-item:last-child{
    margin-right: 0;
}
.qrcodeImg{
    width: 120px;
    height: 120px;
}
/* 备案号 */
.filingText{
    width: 100%;
    height: 50px;
    opacity: 0.9;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 50px;
}
/* 手机端 */
@media screen and (max-width:768px){
    /* 公共头部 */
    .header-wrap{
        width: 100%;
        height: auto;
    }
    .hedaer{
        width: 100%;
        padding: 0 5%;
    }
    .menuIcon{
        display: block;
    }
    .nav-list{
        display: none;
        width: 100%;
        height: auto;
        padding: 20px 5%;
        flex-wrap: wrap;
        background-color: white;
        position: absolute;
        top: 80px;
        left: 0;
    }
    .nav-item{
        width: 100%;
        line-height: 50px;
        margin-right: 0;
    }
    .nav-item:hover::after{
        display: none!important;
    }
    .nav-item .linkCategory-list, .nav-item:nth-child(2) .linkCategory-list{
        /* display: block; */
        width: 100%;
        height: auto;
        position: static;
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
        -moz-transform: translate(0,0);
        -ms-transform: translate(0,0);
        -o-transform: translate(0,0);
    }
    .linkCategory-item{
        width: 100%;
        line-height: 35px;
    }
    .linkCategory-item>a{
        max-width: 100%;
        height: 35px;
        line-height: 35px;
        text-align: left;
    }
    .rightContent{
        display: none;
    }
    .nav-item:nth-child(2) .linkCategory-list{
        flex-wrap: wrap;
    }
    .linkCategory-item{
        padding-left: 20px;
    }
    .Category-list{
        display: none;
    }
    .linkCategory-title{
        width: 100%;
        font-size: 14px;
        text-align: left;
    }
    .linkCategory-title::after{
        display: none;
    }
    .Category-item a{
        display: inline-block;
        width: 100%;
        padding-left: 20px;
        text-align: left;
    }
    /* banner */
    .bannerText-hanzi{
        font-size: 16px;
    }
    .bannerText-letter{
        font-size: 12px;
        margin-top: 0;
    }
    /* router */
    .router-box{
        flex-wrap: wrap;
    }
    .router-right{
        width: 100%;
        margin-top: 20px;
    }
    /* 公共底部 */
    .footer-wrap{
        height: auto;
    }
    .footer{
        padding: 30px 20px 0;
    }
    .linkWrap-list{
        width: 100%;
        flex-wrap: wrap;
    }
    .linkWrap-item{
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    .linkWrap-item:first-child{
        margin-top: 0;
    }
    .link-list{
        display: none;
        margin-top: 0;
    }
    .footer-title {
        font-size: 16px;
        font-weight: bold;
    }
    /* .addIcon,.delIcon{
        display: block;
    } */
    /* 联系我们 */
    .contactUs-wrap{
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    .contactUs-text{
        margin-top: 0;
    }
    .qrcode-list{
        justify-content: flex-start;
    }
    /* 备案号 */
    .filingText{
        width: 100%;
        height: auto;
        opacity: 0.9;
        letter-spacing: 1px;
        font-size: 12px;
    }
}


/*scroll css*/
.scroll_element {
    opacity: 0
}
.scroll_off0 {
    animation: scroll_off0 .75s ease-in-out forwards !important
}
.scroll_off1 {
    animation: scroll_off1 .75s ease-in-out forwards
}
.scroll_on0 {
    animation: scroll_on0 .75s ease-in-out forwards !important
}
.scroll_on1 {
    animation: scroll_on1 .75s ease-in-out forwards;
}
.scroll_on2 {
    animation: scroll_on2 .75s ease-in-out forwards;
    opacity: 1;
}
.scroll_on4 {
    animation: scroll_on4 .75s ease-in-out forwards;
    opacity: 1;
}
.scroll_on5 {
    animation: scroll_on5 .75s ease-in-out forwards;
    opacity: 1;
}
.scroll_on0 .trans-imgs,
.scroll_on1 .trans-imgs,
.scroll_on2 .trans-imgs,
.scroll_on5 .trans-imgs {
    animation: scroll_on2 .75s ease-in-out forwards
}
@keyframes scroll_off0 {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}
@keyframes scroll_off1 {
    0% {
        opacity: 1;
        transform: translate(0, 0)
    }
    100% {
        opacity: 0;
        transform: translate(0, 25px)
    }
}
@keyframes scroll_on0 {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@keyframes scroll_on1 {
    0% {
        opacity: 0;
        transform: translate(0, 80px)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}
@keyframes scroll_on2 {
    0% {
        opacity: 0;
        transform: scale(1.1)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}
@keyframes scroll_on3 {
    0% {
        left: 0
    }
    100% {
        left: -100%
    }
}
@keyframes scroll_on4 {
    0% {
        transform: translateY(0) rotate(-7.5deg)
    }
    50% {
        transform: translateY(-10%) rotate(-7.5deg)
    }
    100% {
        transform: translateY(0) rotate(0)
    }
}
@keyframes scroll_on5 {
    0% {
        transform: translateY(15%)
    }

    100% {
        transform: translateY(0)
    }
}
@-webkit-keyframes hoverIn {
    0% {
        -moz-transform: translate(0, 100);
        -ms-transform: translate(0, 100);
        -webkit-transform: translate(0, 100);
        transform: translate(0, 100);
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0
    }
    100% {
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1
    }
}
@keyframes hoverIn {
    0% {
        -moz-transform: translate(0, 100);
        -ms-transform: translate(0, 100);
        -webkit-transform: translate(0, 100);
        transform: translate(0, 100);
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0
    }
    100% {
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1
    }
}
@-webkit-keyframes hoverOut {
    0% {
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1
    }
    100% {
        -moz-transform: translate(0, -100%);
        -ms-transform: translate(0, -100%);
        -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0
    }
}
@keyframes hoverOut {
    0% {
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1
    }
    100% {
        -moz-transform: translate(0, -100%);
        -ms-transform: translate(0, -100%);
        -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0
    }
}
@-webkit-keyframes pulseMap {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}
@keyframes pulseMap {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}